/* start main-section */
.main-section {
    height: 400px;
    background-image: url(../../images/bg-contact.webp);
    background-position: center 40%;
    background-size: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

@media (max-width: 768px) {
    .main-section {
        height: auto;
        /* background-image: url('./../../images/projects-bg.png') !important; */
    }
}

.main-section .container {
    text-align: center;
}

.main-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
}

/* start  head-loader   */

.head-loader {
    position: relative;
}

.head-loader span {
    position: absolute;
    color: #fff;
    transform: translate(50%, -50%);
    font-size: 50px;
    letter-spacing: 0;
}
@media (max-width: 768px) {
    .head-loader span {
        transform: translate(50%, 20%);
        font-size: 25px;
    }
}
.head-loader span:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
}

.head-loader span:nth-child(2) {
    color: var(--sec);
    -webkit-text-stroke: 1px var(--sec);
    animation: uiverse723 3s ease-in-out infinite;
}

@keyframes uiverse723 {

    0%,
    100% {
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%,
                54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%,
                51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}

/* end  head-loader   */



.main-section .head,
.main-section p {
    color: white;
    z-index: 1;
    position: relative;
}

/* end main-section */
.contact-info {
    background-image: url(../../images/contact-bg-2.png);
}

.contact-info .icon {
    background-color: #ffaa0033;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--sec);
    font-size: 22px;
}

.contact-info .head {
    color: var(--sec);
}


.contact-info form .code input:read-only {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
}

.contact-info form .code input:read-only:focus {
    box-shadow: none;
}

.contact-info form .code .icon-seral {
    background-color: var(--sec);
    position: absolute;
    left: 0;
    top: 0;
    /* padding: 10px; */
    border-radius: 5px 0 0 5px;
}

.contact-info form .code .icon-seral:hover,
.contact-info form .code .icon-seral:focus {
    color: #fff;
    /* border: none; */
    box-shadow: none;
    outline: none;
}

#contact-form div input {
    width: 100%;
    color: var(--primary);
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--sec);
    border-radius: 0;
    transition: 0.5s;
}

#contact-form div input:hover {
    box-shadow: none;
    outline: none;
}

#contact-form div input:focus {
    box-shadow: none;
    outline: none;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--sec);
}





.btn-submit {
    font-family: inherit;
    font-size: 20px;
    background: var(--primary);
    color: white;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-submit:disabled {
    background: rgb(64 129 251 / 50%);
}

.btn-submit span {
    display: block;
    margin-right: 0.3em;
    transition: all 0.3s ease-in-out;
}

.btn-submit svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.btn-submit:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.btn-submit:hover svg {
    transform: translateX(-1.2em) rotate(45deg) scale(1.1);
}

.btn-submit:hover span {
    transform: translateX(-5em);
}

.btn-submit:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}





/* findUs */
.findUs .find {
    position: relative;
    width: fit-content;
}

.findUs .find::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--sec);
    position: absolute;
    left: 0;
    bottom: -20px;
}

.findUs .find::before {
    content: "";
    height: 15px;
    width: 15px;
    /* border-radius: 50%; */
    background-color: var(--sec);
    position: absolute;
    right: 0;
    bottom: -25px;
}

.map-section {
    border-top: 2px solid var(--sec);
    border-bottom: 2px solid var(--sec);
    padding: 10px 0;
}
